home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- set the cursor of sprite 39 to 280
- set the cursor of sprite 40 to 280
- go(the frame)
- end
-
- on keyDown
- checkKeys()
- end
-
- on SearchItNow
- global gTB
- puppetSound(1, "pioolb")
- mSetCriteria(gTB, "appname", "Contains", field "searchFld")
- mSelect(gTB)
- set n to mSelectCount(gTB)
- if n <> 0 then
- put n into field "NumberFound"
- put mGetField(gTB, "appname") into field "appname"
- put mGetField(gTB, "Contact") into field "contact"
- put mGetField(gTB, "highs") into field "highs"
- put mGetField(gTB, "lows") into field "lows"
- put mGetField(gTB, "BottomLine") into field "BottomLine"
- put mGetField(gTB, "Rating") into field "Rating"
- put mGetField(gTB, "AlphSortKey") into field "AlphSortKey"
- else
- alert("No matching items were found.")
- end if
- showSelection()
- go("db2")
- end
-